home *** CD-ROM | disk | FTP | other *** search
/ Aminet 24 / Aminet 24 (1998)(GTI - Schatztruhe)[!][Apr 1998].iso / Aminet / comm / net / SSH.lha / README.AMIGA next >
Text File  |  1998-02-25  |  1KB  |  39 lines

  1. This is an Amiga version of Secure Shell version 1.2.22.
  2. You need at least a 68020 CPU and ixemul.library to run the binaries.
  3. ssh-add, ssh-agent, make-ssh-known-hosts and sshd are not included as
  4. binaries because ssh-agent and sshd don't work.
  5.  
  6. NOTE 1: You need a large stack. Make it 100000 and you're safe.
  7. NOTE 2: scp expects ssh to be in usr:bin to work
  8.  
  9. Nothing has been removed from the original sources, so a compile for UNIX
  10. can be done after running the configure-script as usual. I've only added the
  11. things related to "#ifdef amigaos" and "#ifndef amigaos".
  12.  
  13. The makefiles have been altered by me personally. They will not reappear like
  14. that once you run configure again.
  15.  
  16. Usage
  17. ~~~~~
  18. If you are connected to a TCP/IP-network, internet for example, you can use
  19. ssh to login to a remote host where you have an account.
  20.  
  21. To login as user "david" on host "fish.pond.se" you type:
  22.      ssh -l david fish.pond.se
  23.  
  24. With scp you can copy files between accounts:
  25.  
  26.      scp /Workbench/WBStartup/VirusZ david@fish.pond.se:~/
  27.  
  28. The above copies Workbench:WBStartup/VirusZ to the homedir of user david at
  29. the machine fish.pond.se. Note that you need to write paths in UNIX-style
  30. because scp interprets Workbench: as a remote host "Workbench".
  31.  
  32. Changes
  33. ~~~~~~~
  34. 1998-02-25: Typical! Just when I made the initial upload it struck me that
  35.             this file isn't very helpful to those who know nothing about ssh.
  36.             Therefore, I added some guidance.
  37.  
  38. /Johan Eriksson, johane@lysator.liu.se
  39.